Skip to main content

isArray

Returns true if the CDocBuilderValue object is an array.

Please note, that for the .docbuilder file the CDocBuilderValue.isArray method is not used.

Syntax

boolean isArray();

Example

Java

CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
boolean boolArray = global.isArray();
CDocBuilder.dispose();